home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sesame Street - Season 38 Press Kit
/
Sesame Street - Season 38 Press Kit CD-ROM.iso
/
mac.swf
/
scripts
/
__Packages
/
com
/
mosesSupposes
/
fuse
/
penner_easing
/
Linear.as
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2007-06-07
|
500 b
|
27 lines
class com.mosesSupposes.fuse.penner_easing.Linear
{
function Linear()
{
}
static function easeNone(t, b, c, d)
{
return c * t / d + b;
}
static function easeIn(t, b, c, d)
{
return c * t / d + b;
}
static function easeOut(t, b, c, d)
{
return c * t / d + b;
}
static function easeInOut(t, b, c, d)
{
return c * t / d + b;
}
static function easeOutIn(t, b, c, d)
{
return c * t / d + b;
}
}